home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1997: The Complete Utilities Toolkit / macworld-complete-utilities-1997.iso / Programming / Little Smalltalk v3.1.5 / C Source / Headers / CGraphicsPane.h next >
Encoding:
Text File  |  1994-10-16  |  666 b   |  21 lines  |  [TEXT/KAHL]

  1. //=============================================================================
  2. //    Little Smalltalk, version 3
  3. //    Written by Tim Budd, Oregon State University, July 1988
  4. //
  5. //    Symantec Think Class Library interface code ©Julian Barkway, August 1994 
  6. //
  7. //    CGraphicsPane.h
  8. //    ---------------
  9. //    This class implements a graphics pane as a sub-class of CPicture.
  10. //=============================================================================
  11.  
  12. #ifndef _H_CGraphicsPane
  13. #define _H_CGraphicsPane
  14.  
  15. #include "CPicture.h"
  16.  
  17. struct CGraphicsPane : CPicture {
  18.     void    IGraphicsPane     (CView *encl, CBureaucrat *super, 
  19.                             SizingOption hSizing, SizingOption vSizing);
  20. };
  21. #endif